home *** CD-ROM | disk | FTP | other *** search
-
- SetVariable (TitleName, "Windows Findit") ; Name of the title
- ;;
- SetVariable (TitleMVB, "Innotech") ; Basename of the MVB file
-
- ;;
- SetVariable (TitleSrcDir, "Innotech\") ; Source subdirectory of the title
-
-
- GetCurPath (FinditSrcDir) ; Source directory of the Findit
- SetVariable (FinditSize, 1 000 000) ; Size of the Findit files that will
- ; be copied over (measured in bytes)
- SetVariable (FinditDestDir, "C:\SID\") ; Destination directory for
- ; the Findit. Set default
- ; here.
- SetVariable (CDdrive, "E:\")
-
-
- WindowTitle (<TitleName> " - Setup for Sound Ideas - Sound Effects Database")
-
-
- ; Set the instruction text used in the initial instructions window.
- ; Add Help instructions if the file SETUP.HLP exists.
- ;
- SetVariable (InitialInstructions,
- "Click on {\b OK} or press {\b Enter} to continue. "
- "To abort the setup, click on the {\b Exit} button at the "
- "bottom right corner of the screen, or press {\b F3}. ")
-
-
- IfFileExistsGoto ("SETUP.HLP", AddHelpInstructions)
-
-
- Goto (DisplayInitialMessage)
- AddHelpInstructions:
- SetVariable (InitialInstructions,
- <InitialInstructions> "You can always obtain help by "
- "clicking on the {\b Help} button or pressing {\b F1}. ")
-
-
-
- DisplayInitialMessage:
- DisplayMessage (
- "The Setup program will install " <TitleName> ,
- <InitialInstructions>)
-
-
- ; Determine if the Findit has been installed before.
- ; If the WIN.INI file contains information on where the Findit directory
- ; is located, then make that the default path to install the Findit.
- ;
- GetFromWinIni (FinditDestDirTemp,
- "WFINDIT", "Path", "Undefined")
-
-
- IfEqualGoto (<FinditDestDirTemp>, "Undefined", PromptFinditDestDir)
- SetVariable (FinditDestDir, <FinditDestDirTemp>)
-
-
- AskAgain:
-
-
-
- PromptFinditDestDir:
- PromptPath (FinditDestDir, <FinditDestDir>,
- "Where should Setup install Windows Findit?",
- "Modify the default path if necessary, and then click on {\b OK} or "
- "press {\b Enter} to continue. ",
- "The path is currently not valid. You must specify a drive "
- "letter, a colon, a backslash, and a directory from the root of the drive. ")
-
-
- PromptPath(CDdrive, <CDdrive>,
- "Which drive letter is the CDROM drive currently ?",
- "Modify the default drive if necessary, you should specify a drive"
- " letter, a colon, and end in a {\b backslash}. Then click on {\b OK} or "
- " press {\b Enter} to continue. ",
- "The Drive Letter is not valid. You must specify a valid drive"
- " letter, a colon, and end in a backslash. ")
-
-
-
- ; Don't allow Findit to be installed in the Windows directory
- ;
- GetWinPath (WinPath)
-
-
- GetWinSystemPath (SystemPath)
-
- IfNotEqualGoto (<FinditDestDir>, <WinPath>, CheckSpace)
- DisplayMessage (
- "You cannot install the Findit into the Windows directory. "
- "Please enter another directory.",
- "Click on {\b OK} or press {\b Enter} to enter another directory "
- "for Findit.")
- Goto (PromptFinditDestDir)
-
-
- ; Check if there is enough space to install the Findit.
- ;
- CheckSpace:
- GetSpaceAvailable (SpaceAvailable, <FinditDestDir>)
-
-
- IfLowerGoto (<FinditSize>, <SpaceAvailable>, FinditDestDirOK)
-
- AskYesNo (Prompt, "Yes",
- "There may not be enough space or invalid Drive or Path to install "
- "Wfindit Files "
- "Would you like to enter a new path for the files? ",
- "Click on {\b Yes} or press {\b 'Y'} to enter a new path for the "
- "Wfindit files.\par "
- "Click on {\b No} or press {\b 'N'} to continue anyway.\par "
- "Click on the {\b Exit} button or press {\b F3} to exit Setup. "
- "You may wish to exit Setup and make some more space on your hard "
- "disk. Run Setup again when there is enough space on your hard "
- "disk. ")
- IfEqualGoto (<Prompt>, "Yes", PromptFinditDestDir)
-
-
- AskYesNo (Prompt, "Yes",
- "There may not be enough space or invalid Drive or Path to install "
- "Windows FindIt Version 1. "
- "Would you like to enter a new path for the files? ",
- "Click on {\b Yes} or press {\b 'Y'} to enter a new path for "
- "Windows FindIt files.\par "
- "Click on {\b No} or press {\b 'N'} to continue anyway.\par "
- "Click on the {\b Exit} button or press {\b F3} to exit Setup. "
- "You may wish to exit Setup and make some more space on your hard "
- "disk. Run Setup again when there is enough space on your hard "
- "disk. ")
- IfEqualGoto (<Prompt>, "Yes", PromptCDdrive)
-
- FinditDestDirOK:
- AskYesNo (AskAgain, "Yes",
- "Would you like to change anything before proceeding with "
- "the installation?",
- "Click on {\b Yes} or press {\b 'Y'} to reenter options.\par "
- "Click on {\b No} or press {\b 'N'} to proceed with installation.")
- IfEqualGoto (<AskAgain>, "Yes", AskAgain)
-
-
-
- ; Create the tree structure.
- ;
- MakePath (<FinditDestDir>)
-
- ; Copy the files
- ;
- OpenCopyProgress (
- "Setup is copying the Windows FindIt files.",
- "Please wait while Setup is copying files.")
-
-
-
- CopyFile (<CDdrive>"install\wfindit.exe", <FinditDestDir> "wfindit.exe", 252000)
- CopyFile (<CDdrive>"install\param5", <FinditDestDir> "param5", 252)
- CopyFile (<CDdrive>"install\standard.f0", <FinditDestDir> "standard.f0", 252)
- CopyFile (<CDdrive>"install\wfindit.hlp", <FinditDestDir> "wfindit.hlp", 25234)
- CloseCopyProgress ()
-
-
-
- SetVariable (Continuation, Label1)
- Label1: ; Resume execution
- OpenProgmanProgress (
- "Setup is adding Program Manager groups.",
- "Please wait while Setup adds {\b Program Manager} groups".)
-
- OpenProgmanGroup ("Sound Ideas - Sound Effects CDROM", Delete) ;; Add the group named after the title
-
-
- AddProgmanItem ("Sound Ideas", <FinditDestDir> "wfindit.EXE",
- <FinditDestDir> "wfindit.EXE", 0)
-
-
- CloseProgmanProgress ()
-
-
-
- TranslateFile(<CDdrive>"install\param6.0", <FinditDestDir>"param6.0", 40, romletter, <CDdrive>)
-
-
- AddToWinIni ("SID", "Path", <FinditDestDir>)
-
-
-
-
-
- SetVariable (Message,
- "The Setup program has successfully installed the WFINDIT"
- " program you can start the program by double clicking"
- " on the Icon in the Wfindit program group. %n%n")
-
-
-
-
- SetVariable (Message,
- <Message> "If you have any problems, please contact us as soon "
- "as possible. Our phone no. is (416)492-3838, INNOTECH."
- " Our technical staff will be delighted to help you!%n%n")
-
- DisplayMessage (<Message>,
- "Click on {\b OK} or press {\b Enter} to return to the "
- "Program Manager.")
-
-
-
-